home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / getwd.c < prev    next >
C/C++ Source or Header  |  1992-08-15  |  129b  |  9 lines

  1. #include "amiga.h"
  2. #include <sys/param.h>
  3.  
  4. char *getwd (char *pathname)
  5. {
  6.   chkabort();
  7.   return getcwd(pathname, MAXPATHLEN);
  8. }
  9.